DC.setPosition(domElement, intPosVal, boolSave) Description: Set an auto-position value to visually position DC.wrapper relative to its triggering element or a specified target. Returns: DC Object. Note: The referenced element must be a DOM node, and the CSS styling for DC.wrapper must be absolutely positioned. The intPosVal number refers to the accepted values for the DC.autoPosition property. When boolSave is set to true, the DC.autoPosition property will automatically save the new intPosVal number for future processing when the DC object is rerendered. /* Accepted Values for DC.autoPosition (intPosVal) • 0: Disabled • 1: Above/Center/Left Edge Aligned • 2: Above/Right/Right Edge Aligned • 3: Level/Right/Right Edge Aligned • 4: Below/Right/Right Edge Aligned • 5: Below/Center/Left Edge Aligned • 6: Below/Left/Left Edge Aligned • 7: Level/Left/Left Edge Aligned • 8: Above/Left/Left Edge Aligned • 9: Level/Center/Left Edge Aligned • 10: Above/Center/Right Edge Aligned • 11: Level/Center/Right Edge Aligned • 12: Below/Center/Right Edge Aligned */ Example: DC.setPosition(domElement, 5);